android_LogPriority

Android log priority values, in increasing order of priority.

Values

ValueMeaning
ANDROID_LOG_UNKNOWN0

For internal use only.

ANDROID_LOG_DEFAULT1

The default priority, for internal use only.

ANDROID_LOG_VERBOSE2

Verbose logging. Should typically be disabled for a release apk.

ANDROID_LOG_DEBUG3

Debug logging. Should typically be disabled for a release apk.

ANDROID_LOG_INFO4

Informational logging. Should typically be disabled for a release apk.

ANDROID_LOG_WARN5

Warning logging. For use with recoverable failures.

ANDROID_LOG_ERROR6

Error logging. For use with unrecoverable failures.

ANDROID_LOG_FATAL7

Fatal logging. For use when aborting.

ANDROID_LOG_SILENT8

For internal use only.

Meta